logo头像

望大家一起进步,共创美好未来!

hexo博客npm install报:"Unexpected end of JSON input while parsing near"

hexo init 初始化项目时报 Unexpected end of JSON input while parsing near,没当回事,然后就子就在项目里 npm install 又报 Unexpected end of JSON input while parsing near, 后来就百度查资料,后来看了篇博客,里面说到是因为Nodejs更新到最新版,导致新的项目npm install出现了这个错误。说是因为新版的Nodejs与npm版本不合适的问题。

解决办法:

  1. 安装合适的npm版本:
1
> npm install -g npm@version

2. 另外一种解决方法:

1
> npm cache clean --force